-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Handle multiple paragraphs of content #249
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copilot reviewed 3 out of 3 changed files in this pull request and generated no comments.
Comments suppressed due to low confidence (2)
internal/parsers/markdown.go:102
- [nitpick] The variable name
currentParagraphs
is ambiguous. It should be renamed toaccumulatedParagraphs
.
var currentParagraphs string
internal/parsers/markdown.go:167
- Ensure that
accumulatedParagraphs
is reset correctly only when necessary to avoid losing accumulated text.
currentParagraphs = ""
…instructions. a little refactoring of prereq examples.
…nment variables before executing the code block
… a real enquiry yet.
Need to export Env Vars
@rgardler-msft Is this PR ready for review yet or are you still making changes to it? |
…ationEngine into upstream_issue_32
I forgot I had opened a PR for this and then got carried away doing unrelated work in the branch. I am going to close this as it I need to cherry pick to make it a reviewable PR. |
Handle multiple paragraphs of content in
ie interactive
. Fixes #32